+2001-10-25 Matt Wilson <msw@redhat.com>
+
+ * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
+ the 'indent' property is G_MININT to G_MAXINT. Don't use
+ -G_MAXINT for the minimum of the 'rise' property, use G_MININT
+ instead.
+
2001-10-24 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreeview.c:
remove hack to strip off the bogus newline, since we killed the
bogus newline; fixes #61779
+>>>>>>> 1.2451
2001-10-24 Havoc Pennington <hp@redhat.com>
* gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
+2001-10-25 Matt Wilson <msw@redhat.com>
+
+ * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
+ the 'indent' property is G_MININT to G_MAXINT. Don't use
+ -G_MAXINT for the minimum of the 'rise' property, use G_MININT
+ instead.
+
2001-10-24 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreeview.c:
remove hack to strip off the bogus newline, since we killed the
bogus newline; fixes #61779
+>>>>>>> 1.2451
2001-10-24 Havoc Pennington <hp@redhat.com>
* gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
+2001-10-25 Matt Wilson <msw@redhat.com>
+
+ * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
+ the 'indent' property is G_MININT to G_MAXINT. Don't use
+ -G_MAXINT for the minimum of the 'rise' property, use G_MININT
+ instead.
+
2001-10-24 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreeview.c:
remove hack to strip off the bogus newline, since we killed the
bogus newline; fixes #61779
+>>>>>>> 1.2451
2001-10-24 Havoc Pennington <hp@redhat.com>
* gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
+2001-10-25 Matt Wilson <msw@redhat.com>
+
+ * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
+ the 'indent' property is G_MININT to G_MAXINT. Don't use
+ -G_MAXINT for the minimum of the 'rise' property, use G_MININT
+ instead.
+
2001-10-24 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreeview.c:
remove hack to strip off the bogus newline, since we killed the
bogus newline; fixes #61779
+>>>>>>> 1.2451
2001-10-24 Havoc Pennington <hp@redhat.com>
* gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
+2001-10-25 Matt Wilson <msw@redhat.com>
+
+ * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
+ the 'indent' property is G_MININT to G_MAXINT. Don't use
+ -G_MAXINT for the minimum of the 'rise' property, use G_MININT
+ instead.
+
2001-10-24 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreeview.c:
remove hack to strip off the bogus newline, since we killed the
bogus newline; fixes #61779
+>>>>>>> 1.2451
2001-10-24 Havoc Pennington <hp@redhat.com>
* gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
+2001-10-25 Matt Wilson <msw@redhat.com>
+
+ * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
+ the 'indent' property is G_MININT to G_MAXINT. Don't use
+ -G_MAXINT for the minimum of the 'rise' property, use G_MININT
+ instead.
+
2001-10-24 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreeview.c:
remove hack to strip off the bogus newline, since we killed the
bogus newline; fixes #61779
+>>>>>>> 1.2451
2001-10-24 Havoc Pennington <hp@redhat.com>
* gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
+2001-10-25 Matt Wilson <msw@redhat.com>
+
+ * gtk/gtktexttag.c (gtk_text_tag_class_init): the valid range for
+ the 'indent' property is G_MININT to G_MAXINT. Don't use
+ -G_MAXINT for the minimum of the 'rise' property, use G_MININT
+ instead.
+
2001-10-24 Anders Carlsson <andersca@gnu.org>
* gtk/gtktreeview.c:
remove hack to strip off the bogus newline, since we killed the
bogus newline; fixes #61779
+>>>>>>> 1.2451
2001-10-24 Havoc Pennington <hp@redhat.com>
* gtk/gtktextview.c (gtk_text_view_update_adjustments): don't
g_param_spec_int ("indent",
_("Indent"),
_("Amount to indent the paragraph, in pixels"),
- 0,
+ G_MININT,
G_MAXINT,
0,
G_PARAM_READABLE | G_PARAM_WRITABLE));
g_param_spec_int ("rise",
_("Rise"),
_("Offset of text above the baseline (below the baseline if rise is negative)"),
- -G_MAXINT,
+ G_MININT,
G_MAXINT,
0,
G_PARAM_READABLE | G_PARAM_WRITABLE));